In TaskEntry class, how should you annotate updatedAt so it matches a database column called updated_at?
updatedAt
updated_at
Tip: Check the Room documentation here
@ColumnName("updated_at")
@ColumnInfo(name = updated_at)
@ColumnInfo(name = "updated_at")
@ColumnName(updated_at)
Next Concept